home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / jovept2.arc / TD.H < prev    next >
Text File  |  1985-05-30  |  384b  |  23 lines

  1. /* td.h */
  2. /* constants for td.c to select screen types. */
  3. /* K Mitchum */
  4.  
  5. #define CBASE 0x3d0        /* board port locations */
  6. #define MBASE 0x3b0
  7.  
  8.  
  9. #ifdef TECMAR
  10. #define MAXROW 42
  11. #define HARDINIT
  12. #else
  13. #define MAXROW 24
  14. #endif
  15.  
  16. #ifdef COLOR
  17. #define PAGEBASE 0xB8000
  18. #define PBASE CBASE
  19. #else
  20. #define PAGEBASE 0xB0000
  21. #define PBASE MBASE
  22. #endif
  23.